home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1999 January / Designer's Club 1999 January.iso / mac / Idea Source® / teaser.dir / 00151_rolleffect7.ls < prev    next >
Encoding:
Text File  |  1998-11-17  |  278 b   |  17 lines

  1. on mouseEnter me
  2.   cursor(280)
  3.   repeat while the rollOver = 24
  4.     if the mouseDown then
  5.       go("menu")
  6.     end if
  7.     set the visible of sprite 10 to 1
  8.     updateStage()
  9.   end repeat
  10. end
  11.  
  12. on mouseLeave me
  13.   cursor(-1)
  14.   set the visible of sprite 10 to 0
  15.   updateStage()
  16. end
  17.